home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gxfont1.h < prev    next >
C/C++ Source or Header  |  1996-03-14  |  3KB  |  86 lines

  1. /* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfont1.h */
  20. /* Type 1 font data definition */
  21.  
  22. /* This is the type-specific information for a type 1 (encrypted) gs_font. */
  23. /* The zone_table values should be ints, according to the Adobe */
  24. /* specification, but some fonts have arbitrary floats here. */
  25. #define zone_table(size)\
  26.     struct {\
  27.         int count;\
  28.         float values[(size)*2];\
  29.     }
  30. #define stem_table(size)\
  31.     struct {\
  32.         int count;\
  33.         float values[size];\
  34.     }
  35. typedef struct gs_type1_data_s gs_type1_data;
  36. /* The garbage collector really doesn't want the client data pointer */
  37. /* from a gs_type1_state to point to the gs_type1_data in the middle of */
  38. /* a gs_font_type1, so we make the client data pointer (which is passed */
  39. /* to the callback procedures) point to the gs_font_type1 itself. */
  40. typedef struct gs_font_type1_s gs_font_type1;
  41. struct gs_type1_data_s {
  42.     /*int PaintType;*/        /* in gs_font_common */
  43.     int (*subr_proc)(P3(gs_font_type1 *, int, gs_const_string *));
  44.     int (*seac_proc)(P3(gs_font_type1 *, int, gs_const_string *));
  45.     int (*push_proc)(P3(gs_font_type1 *, const fixed *, int));
  46.     int (*pop_proc)(P2(gs_font_type1 *, fixed *));
  47.     void *proc_data;        /* data for subr_proc & seac_proc */
  48.     int lenIV;
  49.     /* For a description of the following hint information, */
  50.     /* see chapter 5 of the "Adobe Type 1 Font Format" book. */
  51.     int BlueFuzz;
  52.     float BlueScale;
  53.     float BlueShift;
  54. #define max_BlueValues 7
  55.     zone_table(max_BlueValues) BlueValues;
  56.     float ExpansionFactor;
  57.     bool ForceBold;
  58. #define max_FamilyBlues 7
  59.     zone_table(max_FamilyBlues) FamilyBlues;
  60. #define max_FamilyOtherBlues 5
  61.     zone_table(max_FamilyOtherBlues) FamilyOtherBlues;
  62.     int LanguageGroup;
  63. #define max_OtherBlues 5
  64.     zone_table(max_OtherBlues) OtherBlues;
  65.     bool RndStemUp;
  66.     stem_table(1) StdHW;
  67.     stem_table(1) StdVW;
  68. #define max_StemSnap 12
  69.     stem_table(max_StemSnap) StemSnapH;
  70.     stem_table(max_StemSnap) StemSnapV;
  71.         /* Additional information for Multiple Master fonts */
  72. #define max_WeightVector 16
  73.     float WeightVector[max_WeightVector];
  74. };
  75. #define gs_type1_data_s_DEFINED
  76.  
  77. struct gs_font_type1_s {
  78.     gs_font_base_common;
  79.     gs_type1_data data;
  80. };
  81. extern_st(st_gs_font_type1);
  82. #define public_st_gs_font_type1()    /* in gstype1.c */\
  83.   gs_public_st_suffix_add1_final(st_gs_font_type1, gs_font_type1,\
  84.     "gs_font_type1", font_type1_enum_ptrs, font_type1_reloc_ptrs,\
  85.     gs_font_finalize, st_gs_font_base, data.proc_data)
  86.